61aa580dec24d3f497b028c9c82243ca409ece19,OsmAnd/src/net/osmand/plus/voice/TTSCommandPlayerImpl.java,TTSCommandPlayerImpl,internalClear,#,245

Before Change


			mTts = null;
		}
		mTtsContext = null;
		if (ctx != null) {
			abandonAudioFocus();
		}
	}
	

After Change


			mTts.shutdown();
			mTts = null;
		}
		abandonAudioFocus();
		mTtsContext = null;
	}